home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC Gamer (Italian) 30
/
PC Gamer IT CD 30 1-2.iso
/
MOTS
/
GAMEDATA
/
RESOURCE
/
JKMRES.GOO
/
cog_pow_railgun_m.cog
< prev
next >
Wrap
Text File
|
1998-02-25
|
3KB
|
127 lines
# Jedi Knight Missions Cog Script
#
# POW_RAILGUN_M.COG
#
# POWERUP Script - Rail Detonator
#
# [YB & CYW] + [RF]
#
# (C) 1997 LucasArts Entertainment Co. All Rights Reserved
symbols
thing powerup local
thing player local
int bin=127 local
# Bin for the Seeker.
int sbin=137 local
# Weapon order bin.
int wobin=7 local
int ammobin=15 local
sound pickupsnd=powerpu1.wav local
sound respawnsnd=Activate01.wav local
flex amount local
int bin_contents=0 local
int autopickup=0 local
int autosel=-1 local
message touched
message taken
message respawn
end
# ========================================================================================
code
touched:
player = GetSourceRef();
if (GetThingType(player) == 10) // Can only be taken by players.
{
if(IsMulti() || (GetInv(player, bin) == 0) || (GetInv(player, ammobin) < GetInvMax(player, ammobin)))
{
TakeItem(GetSenderRef(), -1);
call taken;
}
}
Return;
# ........................................................................................
taken:
player = GetSourceRef();
powerup = GetSenderRef();
// Do effects.
PlaySoundLocal(pickupsnd, 1, 0, 0);
AddDynamicTint(player, 0.0, 0.0, 0.2);
if(GetInv(player, bin) == 0)
{
// Pickup gun and ammo.
// Print("Rail Detonator");
jkPrintUNIString(player, bin);
ChangeInv(player, bin, 1.0);
ChangeInv(player, sbin, 1.0);
ChangeInv(player, ammobin, 6.0);
// Check for Auto Pickup
autopickup = GetAutoPickup();
if((autopickup & 1) && !(autopickup & 2)) // DANGEROUS
{
if(!((autopickup & 4) && (GetWeaponPriority(player, GetWeaponBin(GetCurWeapon(player)), 0) >= GetWeaponPriority(player, bin, 0))))
{
if(!((autopickup & 8) && (GetWeaponBin(GetCurWeapon(player)) == jkGetMultiParam(1))))
{
SelectWeapon(player, bin);
Return;
}
}
}
}
else
if(GetInv(player, ammobin) < GetInvMax(player, ammobin))
{
// Pickup ammo only.
// Print("Rail Charges");
jkPrintUNIString(player, ammobin);
// store the old bin contents
bin_contents = GetInv(player, ammobin);
ChangeInv(player, ammobin, 6.0);
// Check for Auto Reload
if(GetAutoReload() & 1)
{
if(!bin_contents)
{
if(!((GetAutoReload() & 2) && (GetWeaponBin(GetCurWeapon(player)) == jkGetMultiParam(1))))
{
// Try to autoselect and see if the best weapon is the railgun
if(AutoSelectWeapon(player, 2) == wobin) SelectWeapon(player, wobin);
}
}
}
}
Return;
# ........................................................................................
respawn:
PlaySoundThingLocal(respawnsnd, GetSenderRef(), 0.6, 5.0, 10.0, 0);
Return;
end